home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / metasploit / payloads / win32_passivex.pm < prev    next >
Text File  |  2006-06-30  |  1KB  |  47 lines

  1.  
  2. ##
  3. # This file is part of the Metasploit Framework and may be redistributed
  4. # according to the licenses defined in the Authors field below. In the
  5. # case of an unknown or missing license, this file defaults to the same
  6. # license as the core Framework (dual GPLv2 and Artistic). The latest
  7. # version of the Framework can always be obtained from metasploit.com.
  8. ##
  9.  
  10. package Msf::Payload::win32_passivex;
  11.  
  12. use strict;
  13. use base 'Msf::PayloadComponent::Windows::ia32::PassiveXStager';
  14.  
  15. my $info =
  16. {
  17.     'Name'         => 'Windows PassiveX ActiveX Injection Payload',
  18.     'Version'      => '$Revision: 1.2 $',
  19.     'Description'  => 'Executes an ActiveX control via a hidden IEXPLORE.EXE',
  20.     'Multistage'   => 0,
  21.     'Authors'      => [ 'skape <mmiller [at] hick.org>', ],
  22.     'UserOpts'     =>
  23.         {
  24.         },
  25. };
  26.  
  27. sub _Load 
  28. {
  29.     __PACKAGE__->SUPER::_Load();
  30. }
  31.  
  32. sub new 
  33. {
  34.     my $class = shift;
  35.     my $hash = @_ ? shift : { };
  36.     my $self;
  37.  
  38.     _Load();
  39.  
  40.     $hash = $class->MergeHashRec($hash, {'Info' => $info});
  41.     $self = $class->SUPER::new($hash, @_);
  42.  
  43.     return($self);
  44. }
  45.  
  46. 1;
  47.